home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hottest 6
/
Hottest 6 (1996)(PDSoft)[!].iso
/
software
/
videoutils
/
h-m
/
mainactor
/
rexx
/
saveiff.ma
< prev
next >
Wrap
Text File
|
1978-11-24
|
1KB
|
40 lines
/*
* SaveIFF V1.0, 1993 Markus Moenig
*
* Save the frames/pics of the source project as IFF pictures.
* The base name is the source project name + ".IFF".
*/
OPTIONS RESULTS
ADDRESS MAINACTOR
ScreenToFront /* flip screen to front */
/* print message */
PrintAndStoreTXT "SaveIFF V1.0 saving frames/pics as IFF ..."
GetSPName
IF rc = 0 THEN DO /* check if project loaded */
PARSE VAR RESULT firstname secondname . /* store name of the animation */
/* or the names of the picture list */
GetSPSaver
PARSE VAR RESULT savertype savername . /* store saver module */
SetSPSaver PIC IFF /* Set saver module to IFF */
newname = firstname || ".IFF" /* new name = old one + ".IFF" */
SelectAll /* select all frames/pictures */
Save newname /* save em as IFF pics */
SetSPSaver savertype savername /* restore old saver module */
END